home *** CD-ROM | disk | FTP | other *** search
/ MacHome 2000 May / MacHome CD (May 2000).iso / Games / MacMESS_.36b15.sit / MacMESS .36b15 / Documentation / MCHANGES.TXT < prev    next >
Encoding:
Text File  |  2000-01-30  |  1.3 KB  |  61 lines  |  [TEXT/ttxt]

  1. ==============
  2. MESS misc info 
  3. ==============
  4.  
  5. [general]
  6. -> MAKEFILE changes:
  7. 1.  EMULATOR_EXE = mess.exe (also K6 and I686 versions?)
  8. 2.  DEBUG = 1 (optional)
  9. 3.  NEOFREE = 1
  10. 4.  uncomment all the required CPU cores (use all is ok) see below
  11. 5.  COREOBJS firstline is obj/version.o obj/mess/system.o obj/mame.o obj/mess/mess.o \
  12. 6.  DRVLIBS replace with MESS ones
  13. 7.  MSDOSOBJS += obj/mess/msdos.o obj/msdos/nec765.o
  14. 8.  version....  after $(TINYFLAGS) -DMESS
  15. 9.  next #(TINYFLAGS) -DMESS
  16. 10. all: $(EMULATOR_EXE) romcmp.exe dat2html.exe
  17. 11. add dat2html definition after romcmp.exe:
  18.         dat2html.exe: obj/mess/dat2html.o 
  19.     $(LD) $(LDFLAGS) $^ -lz -o $@
  20. 12. replace archive definitions
  21. 13. add MAKE MESSDIR to the bottom of MAKETREE
  22. 14. add messdir:
  23. 15. add del dat2html.exe to make clean
  24.  
  25. # uncomment the following lines to include a CPU core
  26. CPUS+=Z80@
  27. CPUS+=Z80GB@
  28. CPUS+=M6502@
  29. CPUS+=M65C02@
  30. CPUS+=M6510@
  31. CPUS+=N2A03@
  32. CPUS+=H6280@
  33. CPUS+=I86@
  34. CPUS+=I8039@
  35. CPUS+=I8048@
  36. CPUS+=M6809@
  37. CPUS+=M68000@
  38. CPUS+=TMS9900@
  39. CPUS+=TMS9995@
  40. CPUS+=PDP1@
  41.  
  42. # uncomment the following lines to include a sound core
  43. SOUNDS+=CUSTOM@
  44. SOUNDS+=DAC@
  45. SOUNDS+=AY8910@
  46. SOUNDS+=YM2608@
  47. SOUNDS+=YM2610@
  48. SOUNDS+=YM2612@
  49. SOUNDS+=YM3812@
  50. SOUNDS+=SN76496@
  51. SOUNDS+=POKEY@
  52. SOUNDS+=TIA@
  53. SOUNDS+=NES@
  54. SOUNDS+=ASTROCADE@
  55. SOUNDS+=TMS5220@
  56.  
  57. remove debug and 2600, update mess.txt list and dir_list ;-)
  58.  
  59.  
  60.  
  61.